home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / gfx / show / mpeg_player122.lha / amiga / inline / minreqtools.h
C/C++ Source or Header  |  1992-12-11  |  2KB  |  83 lines

  1. #ifndef _INLINE_MINREQTOOLS_H
  2. #define _INLINE_MINREQTOOLS_H
  3.  
  4. #include <sys/cdefs.h>
  5. #include <inline/stubs.h>
  6.  
  7. __BEGIN_DECLS
  8.  
  9. #ifndef BASE_EXT_DECL
  10. #define BASE_EXT_DECL extern struct Library *ReqToolsBase;
  11. #endif
  12. #ifndef BASE_PAR_DECL
  13. #define BASE_PAR_DECL
  14. #define BASE_PAR_DECL0 void
  15. #endif
  16. #ifndef BASE_NAME
  17. #define BASE_NAME ReqToolsBase
  18. #endif
  19.  
  20. static __inline
  21. APTR rtAllocRequestA( ULONG type, struct TagItem *tags )
  22. {
  23.   BASE_EXT_DECL
  24.   register APTR _res  __asm("d0");
  25.   register struct Library * a6 __asm("a6") = BASE_NAME;
  26.   
  27.   register ULONG d0 __asm("d0") = type;
  28.   register struct TagItem *a0 __asm("a0") = tags;
  29.   
  30.   __asm __volatile ("jsr a6@(-0x1e)"
  31.   : "=r" (_res)
  32.   : "r" (a6), "r" (d0), "r" (a0)
  33.   : "a0","a1","d0","d1", "memory");
  34.   return _res;
  35. }
  36.  
  37. static __inline
  38. void rtFreeRequest( APTR req )
  39. {
  40.   BASE_EXT_DECL
  41.   register struct Library * a6 __asm("a6") = BASE_NAME;
  42.   
  43.   register APTR a1 __asm("a1") = req;
  44.   
  45.   __asm __volatile ("jsr a6@(-0x24)"
  46.   : /* void */
  47.   : "r" (a6), "r" (a1)
  48.   : "a0","a1","d0","d1", "memory");
  49. }
  50.  
  51. static __inline
  52. BOOL rtScreenModeRequestA( struct rtScreenModeRequester *req,
  53.     char *title, struct TagItem *tags )
  54. {
  55.   BASE_EXT_DECL
  56.   register BOOL _res  __asm("d0");
  57.   register struct Library * a6 __asm("a6") = BASE_NAME;
  58.   
  59.   register struct rtScreenModeRequester * a1 __asm("a1") = req;
  60.   register char * a3 __asm("a3") = title;
  61.   register struct TagItem * a0 __asm("a0") = tags;
  62.   
  63.   __asm __volatile ("jsr a6@(-0x90)"
  64.   : "=r" (_res)
  65.   : "r" (a6), "r" (a1), "r" (a3), "r" (a0)
  66.   : "a0","a1","d0","d1", "memory");
  67.   return _res;
  68. }
  69.  
  70. #ifndef NO_INLINE_STDARG
  71. #define rtScreenModeRequest(a0, a1, tags...) \
  72.   ({ struct TagItem _tags[] = { tags }; rtScreenModeRequestA((a0), (a1), _tags); })
  73. #endif /* not NO_INLINE_STDARG */
  74.  
  75. #undef BASE_EXT_DECL
  76. #undef BASE_PAR_DECL
  77. #undef BASE_PAR_DECL0
  78. #undef BASE_NAME
  79.  
  80. __END_DECLS
  81.  
  82. #endif /* _INLINE_REQTOOLS_H */
  83.